home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Prefs / Input.i < prev    next >
Text File  |  1994-12-04  |  381b  |  22 lines

  1.   {      File format for input preferences     }
  2.  
  3.  
  4. {$I "Include:libraries/IffParse.i"}
  5. {$I "Include:Devices/Timer.i"}
  6.  
  7. const
  8.  ID_INPT = 1229869140;
  9.  
  10. Type
  11.  InputPrefs = Record
  12.     ip_Keymap      : Array[0..15] of Char;
  13.     ip_PointerTicks : WORD;
  14.     ip_DoubleClick,
  15.     ip_KeyRptDelay,
  16.     ip_KeyRptSpeed : TimeVal;
  17.     ip_MouseAccel  : WORD;
  18.  end;
  19.  InputPrefsPtr = ^InputPrefs;
  20.  
  21.  
  22.